home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / g / gvp_faaast_prep / gvpfaastprep.dms / gvpfaastprep.adf / ScsiExamples / ScsiExamples.lzh / MakeFile < prev    next >
Makefile  |  1990-07-05  |  406b  |  25 lines

  1. #
  2. # MakeFile for SCSI example programs
  3. #
  4.  
  5. LIBS = LIB:amiga.lib LIB:lcsr.lib
  6.  
  7. LD = BLink LIB $(LIBS) SC SD ND NOALVS BATCH FROM LIB:RXStartUp.obj
  8.  
  9. .c.o:
  10.   LC -cafs -O -rr -s -v -w $*
  11.  
  12. all : Inquiry ReadCapacity ReadSector RewindTape
  13.  
  14. Inquiry : Inquiry.o
  15.   $(LD) $< TO $@
  16.  
  17. ReadCapacity : ReadCapacity.o
  18.   $(LD) $< TO $@
  19.  
  20. ReadSector : ReadSector.o
  21.   $(LD) $< TO $@
  22.  
  23. RewindTape : RewindTape.o
  24.   $(LD) $< TO $@
  25.